home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
vbusNotProbed.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
407b
|
13 lines
/*
for each date when probing occurred, lists the buses which were NOT probed
*/
create or replace view vbusnotprobed as
select farebox.glid , bus.bus_id,
vprobedates.tpdate
from vprobedates,
farebox, bus
where not exists (Select probehist.farebox_glid from probehist
where tpdate = trunc(probehist.pdate) and
probehist.farebox_glid = farebox.glid)
and farebox.location = bus.glid;